DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T> Class / FindKeys Method
The key values to search for.
Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

In This Topic
    FindKeys Method (Index<T>)
    In This Topic

    Finds items containing any of the specified key values.

    Implements FindKeys(IEnumerable,Order)

    Syntax
    'Declaration
     
    Public Function FindKeys( _
       ByVal keys As IEnumerable, _
       ByVal order As Order _
    ) As IndexQuery(Of T)
    public IndexQuery<T> FindKeys( 
       IEnumerable keys,
       Order order
    )

    Parameters

    keys
    The key values to search for.
    order
    Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

    Return Value

    An object enumerating all items whose key values belong to the specified key value collection.
    See Also